/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Departaments page
--------------------------------------------------------------*/
.header-02 {
  border-bottom: 0.5px solid #02083b2d;
}

.main-02 {
  margin-top: 30px;
}

.item-02 {
  padding: 100px;
}

.back {
  font-size: 1.2rem;
  margin-top: 40px;
  text-decoration: underline;
}

.back:hover {
  text-decoration: underline;
}

.hero-image {
  position: relative;
  display: inline-block;
}

.hero-image img {
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1) 90%);
  /* Ajuste as cores conforme necessário */
  pointer-events: none;
  /* Permite clicar na imagem abaixo */
}

.titulo-subdivisoes {
  text-align: center;
  margin:100px 0 50px 0;
}

.titulo-subdivisoes-01 {
  text-align: center;
  margin-bottom:50px;
}



.divisor {
  opacity: 0.1; /* Define a transparência em 10% */
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* Define a espessura e cor */
}
